home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / progjrn / pj_7_2.arc / CINIT.ASM < prev    next >
Assembly Source File  |  1989-02-26  |  587b  |  27 lines

  1. ; CINIT.asm
  2. ; the assembler source module containing the initialization entry
  3. ; for CDLL.DLL
  4. ;
  5. ; By Ray Duncan
  6.  
  7.         extrn   C_INIT:far
  8.  
  9. _TEXT   segment word public 'CODE'
  10. î        assume  cs:_TEXT
  11.  
  12. INIT    proc    far             ; initialization routine
  13.  
  14.         call    C_INIT          ; call C routine to
  15.                                 ; do the actual work
  16.  
  17.         ret                     ; back to caller with
  18.                                 ; AX = status code
  19.                                 ; ("value" from C_INIT)
  20. INIT    endp
  21.  
  22. _TEXT   ends
  23.  
  24.         end     INIT
  25.  
  26.